home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert HTML Comment~wraps the current selection with
- <!-- ... --> tags.
- @EndTool:
- @Summary: insert HTML Comment~wraps selection with the HTML Comment tag
- */
-
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.insert(selection.endLineIndex, selection.endCharIndex, "-->");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<!--");
- editor.setActive("insert HTML Comment");
- }
- }
-
- !!/Script
-